home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
flight simulator ƒ
/
defines.h
next >
Wrap
Text File
|
1989-08-11
|
336b
|
20 lines
#define NOT !
#define AND &&
#define NEQ !=
#define EQ ==
#define OR ||
#define COMP ~
#define MOD %
#define SQ(x) ((x)*(x))
#define NIL (0L)
#define ASCIItoNUM(x) ((x)-48)
#define NUMtoASCII(x) ((x)+48)
char *PtoCstr();
char *CtoPstr();
#define ptoc(x) PtoCstr(x)
#define ctop(x) CtoPstr(x)
#define DeBug() asm{dc.w 43519}